home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Views / Arrangements / ArrangedPane.h < prev    next >
Text File  |  1997-06-28  |  420b  |  31 lines

  1. // ArrangedPane.h
  2.  
  3. #ifndef ArrangedPane_h
  4. #define ArrangedPane_h
  5.  
  6. #ifndef Pane_h
  7. #include "Pane.h"
  8. #endif
  9.  
  10. class ArrangedPane: public Pane
  11.   {
  12.     friend class ArrangementBase;
  13.     
  14.     private:
  15.         const View *parent;
  16.  
  17.     public:
  18.         ArrangedPane();
  19.         ArrangedPane( const View& theParent )
  20.           : parent( &theParent )
  21.           {}
  22.  
  23.         Pane::SetBounds;
  24.         Pane::MapTo;
  25.         Pane::Unmap;
  26.         
  27.         virtual void Clip( RegionObject& ) const;
  28.   };
  29.  
  30. #endif
  31.